home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TPUG - Toronto PET Users Group
/
TPUG Users Group CD
/
TPUG Users Group CD.iso
/
AMIGA
/
AMICUS
/
AMICUS12.ADF
/
Star10
/
stin10.asm
< prev
next >
Wrap
Assembly Source File
|
1986-08-05
|
1KB
|
49 lines
* FILE: stin.asm August 11, 1986
*
* Version: 1.0
*
* By: Andrew Tuline CIS: 70465,1223
* Vancouver, B.C.
*
* This file contains all the Commodore .i files to be linked with
* my own file (stars.asm). This method should speed up assembling
* of stars.asm dramatically. This file must be placed on the root
* directory of the Amiga Assembler disk and assembled as follows:
*
* cd df1:include
* :c/assem :stin.asm -o ram:stin.o -c w120000
*
*
INCLUDE "df1:include/exec/types.i"
INCLUDE "df1:include/exec/funcdef.i"
INCLUDE "df1:include/intuition/intuition.i"
* I tried ACTIVATE!WINDOWCLOSE in stars.asm, but the assembler wouldn't
* allow arithmetic operations on XREF values. Therefore ANDREWSGADGETS was
* defined in this file.
ANDREWSGADGETS equ ACTIVATE!WINDOWCLOSE!BACKDROP
IDCMP_FLAGS equ CLOSEWINDOW!RAWKEY
XDEF ANDREWSGADGETS
XDEF IDCMP_FLAGS
XDEF ns_DefaultTitle
XDEF nw_Title
XDEF CLOSEWINDOW
XDEF RAWKEY
XDEF sc_RastPort
XDEF sc_ViewPort
XDEF im_Class
XDEF MP_SIGBIT
XDEF RP_JAM1
XDEF CUSTOMSCREEN
XDEF wd_UserPort
XDEF WBENCHSCREEN
end